home comics writing pictures archive about

div.cpp

Language: C++
Last Modified: 2021-05-21 1:54:44 AM UTC
File Size: 6735 bytes
http://www.penguinstew.ca/example/Division/div.cpp
include<iostream>
include<string>
include<cmath>
usingnamespacestd;
constintMAXDEC=65;
constintNOPRINT=1;
constintDECPRINT=2;
intgetDigitsintnumber;
intgetNextDigitintnumber;
intmainvoid{
stringtempInput;
boolreplay=true;
Loopuntiluserquits
whilereplay{
input
intdividend;
intdivisor;
Digitcounts
intendDigits;
intsorDigits;
Thelistofcurrentvalues
intcurList[MAXDEC1];
Thelistofcalculatedmultipliedvalues
intmulList[MAXDEC1];
Thelistofdigitsmakinguptheresult
intoutput[MAXDEC1];
intendCopy=0;
intremain=0;
intcurrent=0;
intspace=0;
intbase=4;
Flags
boolinput=false;
boolstart=false;
replay=false;
cout<<Format:AB=C<<endl;
cout<<AandBmustbelessthan100000000<<endl;
cout<<AandBmustbegreaterthan0<<endl;
Getthedividendfrominput
whileinput{
input=true;
cout<<PleaseenteranumberforA:<<endl;
Gettheinputandconvertittoanint
cin>>tempInput;
dividend=atoitempInputc_str;
checkifdividendisincorrectrange
ifdividend<=0||dividend>=100000000{
input=false;
cout<<InvalidA:<<endl;
}
}
input=false;
Getthedivisorfrominput
whileinput{
input=true;
cout<<PleaseenteranumberforB:<<endl;
Gettheinputandconvertittoanint
cin>>tempInput;
divisor=atoitempInputc_str;
checkifdivisorisincorrectrange
ifdivisor<=0||divisor>=100000000{
input=false;
cout<<InvalidB:<<endl;
}
}
input=false;
Getthecountofthedigitsinbothnumbersandmakeacopyofthedividend
endDigits=getDigitsdividend;
sorDigits=getDigitsdivisor;
endCopy=dividend;
Clearthelists
forintj=0;j<MAXDEC1;j{
output[j]=NOPRINT;
curList[j]=NOPRINT;
mulList[j]=NOPRINT;
}
Loopthroughallthedigitsofthenumber
forinti=0;i<endDigits;i{
Getthenewvaluebyaddingtheremainderandthenextdigit
current=remain10getNextDigitendCopy;
forintj=0;j<10;j{
Findthevalueforjsuchthatj1multipliedbythedivisorisgreaterthanthecurrentvalue
ifj1divisor>current{
ifj=0andwehaventstartedprintingthentellittoprintnothing
ifj==0start==false{
output[i]=NOPRINT;
curList[i]=NOPRINT;
mulList[i]=NOPRINT;
}else{
ifstart==false{Ifj=0andnotstartedprintingstart
start=true;
curList[i]=NOPRINT;
}else{Ifthisisntthefirstlineaddcurrenttothelist
curList[i]=current;
}
Determinetheresultsandaddthemtotheirperspectivelists
mulList[i]=jdivisor;
output[i]=j;
}
Determinenextremainder
remain=currentjdivisor;
break;
}
}
}
ifstart==false{Ifstillhaventstartedsetpreviousoutputto0
start=true;
mulList[endDigits1]=0;
output[endDigits1]=0;
}
Markthedecimalpoint
output[endDigits]=DECPRINT;
curList[endDigits]=DECPRINT;
mulList[endDigits]=DECPRINT;
LoopthroughthedecimaldigitsuntilmaxDecorresultis0
forinti=endDigits1;i<=MAXDEC;i{
Getthenewvaluefromtheremainder
current=remain10;
forintj=0;j<10;j{
Findthevalueforjsuchthatj1multipliedbythedivisorisgreaterthanthecurrentvalue
ifj1divisor>current{
Addcurrenttothelist
curList[i]=current;
Determinetheresultsandaddthemtotheirperspectivelists
mulList[i]=jdivisor;
output[i]=j;
remain=currentjdivisor;
break;
}
}
ifremain==0{Iftheremainderis0settherestoftheoutputtonotprintandstop
break;
}
}
cout<<endl;
Spacerforthedivisor
forinti=0;i<sorDigits3;i{
cout<<;
}
Printtheresultingvalue
forinti=0;i<MAXDEC;i{
ifoutput[i]==NOPRINT
cout<<;
elseifoutput[i]==DECPRINT
cout<<;
else
cout<<output[i];
}
cout<<endl;
Printouttheoperation
cout<<divisor<<<<dividend<<endl;
Printouttheprocess
forinti=0;i<MAXDEC;i{
ifmulList[i]==NOPRINT{Ifcurrentnumberisnoprintskip
continue;
}
ifmulList[i]==DECPRINT{Ifcurrentnumberisdecimalmovethebasebackone
base=base1;
continue;
}
printthecurrentvalue
ifcurList[i]=NOPRINT{
space=sorDigitsigetDigitscurList[i]base;
forintj=0;j<space;j{
cout<<;
}
cout<<curList[i]<<endl;
}
Printthemultipliedvalue
space=sorDigitsigetDigitsmulList[i]base;
forintj=0;j<space;j{
cout<<;
}
cout<<mulList[i]<<endl;
}
cout<<endl;
cout<<Doyouwanttodivideanothernumber?YN:;
Gettheinput
cin>>tempInput;
checkifstringstartswithyorY
iftempInput[0]==y||tempInput[0]==Y{
replay=true;
}
}
return0;
}
Getthenumberofdigitsinthenumber
intgetDigitsintnumber{
forinti=1;i<=8;i{
Multiplythenumberby01andthentruncatebycastingtoanint
number=intnumber01;
Repeatutilthenumberhasranoutofdigits
ifnumber==0{
Returniwhichwillbethenumberofdigits
returni;
}
}
return0;
}
returnstheleftmostdigit
intgetNextDigitintnumber{
Getthenumberofdigitsinthenumber
intdig=getDigitsnumber;
Powerandinversepower
intpower=1;
doubleinvPower=1;
Loopthroughthenumberofdigitstogetthevalues
forinti=0;i<dig1;i{
power=power10;
invPower=invPower01;
}
Getthelastdigit
intlast=intnumberinvPower;
Removethelastdigitfromthenumber
number=numberpowerlast;
returnlast;
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263